home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compendium Deluxe 2
/
LSD and 17bit Compendium Deluxe - Volume II.iso
/
a
/
prog
/
cprog
/
ddjcomp.lha
/
urban
/
getbit.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-04-29
|
217 b
|
15 lines
int get_bit() {
unsigned int carry;
carry=cin&0x80;
cin=(cin<<1)&0xff;
if(cin) {
return(carry);
} else {
cin=getchar();
carry=cin&0x80;
cin=(cin<<1)&0xff;
++cin;
return(carry);
}
}